home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 Extra / Chip_Extra_1999.iso / share / aktuell / mimarzip / m8vcs99.exe / MimarSinan ACE Wrapper (ACE) / ace12b / UNACESRC / AMIGA / smakefile < prev   
Encoding:
Makefile  |  1998-07-03  |  2.0 KB  |  53 lines

  1. ##############################################################################
  2. #                                                                            #
  3. #            Make file for the Amiga version of UNACE using SAS C.           #
  4. #                                                                            #
  5. #                                                                            #
  6. # Rev 01  97/12/03  Wilfred van Velzen                                       #
  7. #                                                                            #
  8. ##############################################################################
  9. #                                                                            #
  10. # To compile the Amiga version of UNACE with SAS C:                          #
  11. #                                                                            #
  12. # Copy the files "smakefile" and "scoptions" to the directory with all the   #
  13. # source files (*.c, *.h), and type "smake" on the commandline in a shell.   #
  14. #                                                                            #
  15. ##############################################################################
  16.  
  17.  
  18. OBJS= Uac_crc.o Globals.o Uac_crt.o Unace.o Uac_sys.o Uac_dcpr.o Uac_comm.o
  19.  
  20. CDEFINES = DEF=AMIGA
  21.  
  22.  
  23. Unace: $(OBJS)
  24.  
  25.    sc link to Unace $(OBJS)
  26.  
  27.  
  28. Globals.o: Globals.c os.h acestruc.h unace.h declare.h portable.h
  29.  
  30. Uac_crc.o: Uac_crc.c uac_crc.h declare.h os.h
  31.  
  32. Uac_crt.o: Uac_crt.c os.h attribs.h globals.h uac_crt.h uac_sys.h unace.h \
  33.            acestruc.h declare.h portable.h
  34.  
  35. Uac_comm.o: Uac_comm.c uac_dcpr.h uac_comm.h unace.h declare.h os.h
  36.  
  37. Uac_dcpr.o: Uac_dcpr.c os.h globals.h portable.h uac_comm.h uac_crc.h \
  38.             uac_dcpr.h uac_sys.h unace.h acestruc.h declare.h
  39.  
  40. Uac_sys.o: Uac_sys.c globals.h uac_sys.h unace.h acestruc.h declare.h \
  41.            portable.h os.h
  42.  
  43. Unace.o: Unace.c os.h globals.h portable.h uac_comm.h uac_crc.h uac_crt.h \
  44.          uac_dcpr.h uac_sys.h unace.h acestruc.h declare.h
  45.  
  46.  
  47. .c.o:
  48.    sc $(CDEFINES) $<
  49.  
  50.  
  51. # end of makefile
  52.  
  53.